#!/usr/bin/env bash

# Quit or kill Logitech Unifying Software

if [ -e '/Applications/Utilities/Logitech Unifying Software.app' ]; then
	/usr/bin/sudo -u $USER /usr/bin/osascript -e 'tell application "Logitech Unifying Software" to quit'
	/usr/bin/killall 'Logitech Unifying Software'
fi

exit 0
